curl --request PATCH \
--url https://api.onetsolutions.net/v1/organizations/{organization_id}/projects/{project_id}/compute/images/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"visibility": "public",
"os_name": "<string>",
"os_version": "<string>",
"os_architecture": "<string>",
"is_active": true,
"is_featured": true,
"min_disk_gb": 2147483647,
"min_ram_mb": 2147483647
}
'Partially update the metadata of a private image. Only provided fields will be updated.
curl --request PATCH \
--url https://api.onetsolutions.net/v1/organizations/{organization_id}/projects/{project_id}/compute/images/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"visibility": "public",
"os_name": "<string>",
"os_version": "<string>",
"os_architecture": "<string>",
"is_active": true,
"is_featured": true,
"min_disk_gb": 2147483647,
"min_ram_mb": 2147483647
}
'Documentation Index
Fetch the complete documentation index at: https://help.onetsolutions.net/llms.txt
Use this file to discover all available pages before exploring further.
Use Authorization: Bearer <token> header. Token can be a JWT token or an API key (format: sk-onetsolutions-...).
Unique identifier of the image.
Unique identifier of the organization that owns the resource.
Unique identifier of the project containing the resource.
Ex: Ubuntu 22.04 LTS, Debian 12
255Ex: ubuntu-22-04, debian-12
50^[-a-zA-Z0-9_]+$Public images are available to all, private to organization only
public - Publicprivate - Privatepublic, private Ex: Ubuntu, Debian, CentOS
100Ex: 22.04, 12, 8
50Ex: x86_64, aarch64
20Featured public images
Minimum disk size required (GB)
0 <= x <= 4294967295Minimum RAM required (MB)
0 <= x <= 4294967295Image updated successfully